home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / PRINTING / PAGESET / ABOUTWND.PAS < prev    next >
Pascal/Delphi Source File  |  1996-09-12  |  430b  |  30 lines

  1. unit AboutWnd;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls;
  8.  
  9. type
  10.   TAbout = class(TForm)
  11.     Button1: TButton;
  12.     Image1: TImage;
  13.     Label1: TLabel;
  14.     Label2: TLabel;
  15.     Label3: TLabel;
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   About: TAbout;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. end.
  30.